/* Game Cards */
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.game-card:hover {
  transform: translateY(-10px)!important;
  box-shadow: 0 10px 25px rgb(255 5 5 / 30%) !important
}

.game-card .game-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--muted);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
}
.game-image:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    background-color: #06060647;
    top: 0;
    left: 0;
}
.game-card:hover .game-image:after{
  height: 100%;
}
.game-image:hover .hoverPlayShow{

}
.game-card .game-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.game-card .game-provider {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.game-card .game-jackpot {
  font-size: 0.75rem;
  color: var(--casino-gold-solid);
  font-weight: 600;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .game-card {
    padding: 0.75rem;
  }
  
  .game-card .game-image {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
  
  .game-card .game-title {
    font-size: 0.875rem;
  }
  
  .game-card .game-provider {
    font-size: 0.75rem;
  }
}

/* Animation utilities */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Hover effects */
.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:bg-muted:hover {
  background-color: var(--muted);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.desktopOnly{
    display: inline-block!important;
}
.tabOnly{  
    display: none!important;
}
.mobileOnly{
    display: none!important;
}
.light .gradient-card{
  background-color: white!important
}
@media(max-width:1024px){
  .desktopOnly{
    display: none!important;
  }
  .tabOnly{  
    display: inline-block!important;
  }
  .mobileOnly{
    display: none!important;
  }
}
@media(max-width:768px){
  .desktopOnly{
    display: none!important;
  }
  .tabOnly{  
    display: none!important;
  }
  .mobileOnly{
    display: inline-block!important;
  }
}

.logoIcon{
  display: none!important;
}
@media(max-width:1024px){}
@media(max-width:768px){
  .logoIcon{
    display: flex!important;
  }
}
/* LiveWire PReplay Css  */
/* Custom slide-in and backdrop styles */
    .play_modal-slide {
        transition: transform 0.4s ease-out;
        transform: translateX(100%);
    }
    .play_modal-open .play_modal-slide {
        transform: translateX(0);
    }
    .play_modal-backdrop {
        transition: opacity 0.4s ease-out;
        opacity: 0;
        pointer-events: none;
    }
    .play_modal-open .play_modal-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    /* Tailwind Configuration */
    .play_bg-light-bg { background-color: #f3f4f6; }
    .play_text-light-text-primary { color: #1f2937; }
    .play_dark\:bg-dark-bg { background-color: #111827; }
    .play_dark\:text-dark-text-primary { color: #f3f4f6; }
    
    
    
    
/*Custom Slider*/
/* Right Side */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

.customSlider_app-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    z-index: 1;
    padding: 0px 0;
    margin-bottom: 30px;
}

.customSlider_background-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(135deg, #f3f4f6, #d1d5db);
    transition: background 0.5s ease-in-out;
    z-index: -1;
    opacity: 0.16;
}

.customSlider_slider-container {
    width: 100%;
    max-width: 1400px;
    padding: 0;
    position: relative;
}

.customSlider_slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
}

.customSlider_slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    user-select: none;
    padding: 0px 0;
}

.customSlider_slider-item {
    flex: 0 0 calc(100% / 1);
    padding: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 0;
}

@media (min-width: 768px) {
    .customSlider_slider-item {
        flex: 0 0 calc(100% / 3);
    }
}

.customSlider_slider-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.customSlider_slider-item.active img {
    /* transform: scale(1.05); */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.customSlider_slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
}

.customSlider_slider-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.customSlider_slider-arrow.left {
    left: 10px;
}

.customSlider_slider-arrow.right {
    right: 10px;
}

.customSlider_slider-arrow svg {
    width: 24px;
    height: 24px;
}

.customSlider_navigation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    z-index: 20;
    background-color: #ffffff00;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0%);
}

.customSlider_navigation-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.customSlider_dot {
    position: relative;
    height: 8px;
    width: 8px;
    background-color: #e5e7eb;
    border-radius: 10031px;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

@media (max-width: 768px) {
    .customSlider_dot {
        /* width: 40px; */
    }
}

.customSlider_dot:hover {
    background-color: #d1d5db;
}

.customSlider_dot.active {
    background-color: #e5e7eb;
    width:70px;
}

.customSlider_progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #10b981;
    width: 0%;
    transition: width linear;
}